Skip to main content
Version: 1.2

HTTP Headers

Request Headers​

HeaderUsageGETPOSTPUTDELETE
AcceptIndicates desired format of the response. If set to a value that cannot be supported by the server, API responds with 406 (not acceptable)

MUSTπŸ’‘

MUSTπŸ’‘

MUSTπŸ’‘

N/A
Content-TypeIndicates the format of the payload provided on the request. If not supported by the server, API responds with 415Β (Unsupported Media Type)N/A

MUSTπŸ’‘

MUSTπŸ’‘

N/A
AuthorizationTo provide authorization information – type and token, depending on authorization type. If token is not valid for the request, API responds with 401 (Unauthorized)

MUST, unless a public APIπŸ’‘

MUST, unless a public APIπŸ’‘

MUST, unless a public APIπŸ’‘

MUST, unless a public APIπŸ’‘

Accept-EncodingAdvertises what compression algorithm the consuming application is able to understand. If encoding not supported by the server, API responds with uncompressed response

SHOULDπŸ’‘

SHOULD, if response body expectedπŸ’‘

SHOULD, if response body expectedπŸ’‘

N/A
API Key HeaderSend the API Keys with every request. If keys are not valid, API response with 401 (Not authorised)

MUST, if issuedπŸ’‘

MUST, if issuedπŸ’‘

MUST, if issuedπŸ’‘

MUST, if issuedπŸ’‘

If_Modified_Since/If-None-MatchMakes the request conditional; the server will respond with the resource only if the specified condition is met. If condition is not met, API responds with 304 (Not Modified)

SHOULDπŸ’‘

N/AN/AN/A
Request tracking HeadersUnique identifier that can be used to trace a request throughout its lifecycle

SHOULDπŸ’‘

SHOULDπŸ’‘

SHOULDπŸ’‘

SHOULDπŸ’‘

Response Headers​

Response HeadersUsageGETPOSTPUTDELETE
Content-TypeIndicates the format type of the responseMUST

MUST, if response body returnedπŸ’‘

MUST, if response body returnedπŸ’‘

N/A
LocationIndicates the absolute URI of the newly created resource item

MUST for 302 redirectπŸ’‘

SHOULD, if resource createdπŸ’‘

N/AN/A
Content-LocationIndicates the absolute URI of the requested resource

SHOULDπŸ’‘

SHOULD, if resource returnedπŸ’‘

SHOULDπŸ’‘

N/A
Cache-ControlDirectives to control caching behaviour external to the API layer (e.g. CDN caching)

SHOULDπŸ’‘

SHOULDπŸ’‘

SHOULDπŸ’‘

N/A
ExpiresUsed in conjunction with Cache-Control for backwards compatibility

SHOULDπŸ’‘

SHOULDπŸ’‘

SHOULDπŸ’‘

N/A
ETagConcurrency control header

SHOULDπŸ’‘

SHOULDπŸ’‘

SHOULDπŸ’‘

SHOULDπŸ’‘

Custom X-HTTP Headers​

X- notation headers have been deprecated as per RFC6648 and SHOULD NOT be used, if possible.πŸ’‘

This standard appreciates that X- notation headers are widely used however this document recommends that the X- notation not be used when defining your own custom headers and instead define a custom header notation that is relevant. For example, X-Request-Id could be redefined as Request-Id.

Request Header Detail​

Request headers are supplied by the consuming application and MUST include the following elements:

  • AcceptπŸ’‘

  • Content-TypeπŸ’‘

  • Authorization.πŸ’‘

For many years Header definitions could be found in RFC2616. RFC2616 is now obsolete and has been superseded by a series of RFC documents RFC9110-RFC9114. For specific HTTP header information you should refer to RFC9110 - HTTP Semantics

Accept​

MUSTπŸ’‘

An Accept header is REQUIRED to indicate what format the consuming application wants the information to be returned as (e.g. JSON or XML).πŸ’‘

It is preferable for the consuming application to specify the response content type that they expect.πŸ’‘

However it is acceptable to use the β€˜q’ parameter to specify the quality of support.πŸ’‘

Example

# Accept JSON and latest version
Accept: application/json,version=\*

# Prefer JSON, Accept XML and latest version 1 release
Accept: application/json;q=1.0,application/xml;q=0.8,version=1.\*

#Accept XML only and version 1.2 only
Accept: application/xml;q=1.0,application/json;q=0.0,version=1.2

If the client has specified via the Accept header that it doesn’t support any formats provided by the API, the server MUST return an HTTP 406 Not Acceptable response.πŸ’‘

The body of the representation SHOULD include an error message in human readable plain text or HTML.πŸ’‘

Example Response

# Response that indicates the request failed due to the client not supporting any response formats provided by the API
HTTP/1.1 406 Not Acceptable
Content-Type: text/plain

This API does not support any of the requested content types specified
in the HTTP Accept header. Please see
<http://www.example.com/api/documentation/widgetservice> for details on
the supported content types.

The Accept header is required, however the β€˜version’ and β€˜q’ are recommended as this will depend on a provider’s implementation and in some cases technology choice.

Content-Type (Request)​

Required

The Content-Type header is required for all requests that include a request body i.e. POSTπŸ’‘, PUTπŸ’‘, DELETEπŸ’‘.

Example

# PUT <https://api.example.govt.nz/v2/vaccinators/33245>
Accept: application/json,version=1.\*
Content-Type: application/json
Authorization: Bearer x6TLB4JaomezC5rJ3CIl3KxxNinq

{
"id": "33245",
"names": {
"firstName": "John",
"middleName": "Howard",
"lastName": "Doe",
"salutation": "Mr John Doe",
"title": "Mr"
},
"addresses": [
{
"type": "home",
"address1": "1 Some Street",
"address2": "Some Suburb",
"address3": "Some City",
"address4": null,
"country": "New Zealand",
"postcode": 1111
},
{
"type": "business",
"address1": "2 Work Street",
"address2": "Work Suburb",
"address3": "Work City",
"address4": null,
"country": "New Zealand",
"postcode": 2222
}
],
"certifications": [
{
"id": "1a4rf54ee345",
"type": "Some type",
"provider": "University of life",
"providerId": "0o9i8u7y6tt"
},
{
"id": "8u7y6t5r4ee",
"type": "Another type",
"provider": "School xyz",
"providerId": "1q2w3e4r5tt"
}
]
}

Authorization​

MUST

Most API requests will be authorised. The Authorization header should be used for this purpose and no other.

If an API Key Header is not used, then the Authorization token MUST be used to identify the API Consumer using an attribute within the token.πŸ’‘

Note that the Authorization header is not the best place for an API Key.

The Authorization header is comprised of a type and a token depending on the authorization type.

Note that Bearer tokens can be opaque (understood only by the server) or client based JSON Web Tokens (JWT).

Example

# OAuth 2.0 Access Token (Opaque)
Authorization: Bearer x6TLB4JaomezC5rJ3CIl3KxxNinq

# OAuth 2.0 Access Token (Client Based)
Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzUxMiJ9.eyJpc3MiOiJodHRwczovL2lkcC5leGFtcGxlLmNvbSIsImlhdCI6MTcwMDE2NzAxMCwiZXhwIjozODE0NDYxNDIwLCJhdWQiOiJodHRwczovL2V4YW1wbGUtYXBpLWNvbnN1bWVyLnNlY3Rvci5jb20iLCJzdWIiOiIwMDlhYTFkOC1kZjA1LTRlZjgtYjRiNi04MzQwMjY0Y2VlOTAiLCJHaXZlbk5hbWUiOiJKb2hubnkiLCJTdXJuYW1lIjoiRG9lIiwiRW1haWwiOiJqZG9lQGV4YW1wbGUuY29tIiwic2NvcGVzIjpbIlBhdGllbnQuciIsIkNhcmVQbGFuLnIiXX0.X4NQziHnQ68ygniCWoKFDcKHdy7DfrAYDUaJfKUB4cRZ7FPTq-64DxxhjcQz8GuJRkuEj9aYgMNCdY0m0BUqow

# HTTP Basic
Authorization: Basic c29tZXVzZXI6c29tZSBwYXNzd29yZA==

Accept-Encoding​

SHOULD

In some cases, especially where API responses are very large, it may be worth compressing HTTP responses. (Note: where possible it is best to avoid large payloads in API responses; however, this may not always be possible.) An Accept-Encoding value of gzip instructs a provider that supports HTTP compression that the consuming application supports compressed responses.

Example

Accept-Encoding: gzip,deflate

API Key Header​

MUST

An API key issued to a consuming application MUST be sent with every request made to the API, if the API uses this mechanism to identify the client.πŸ’‘

The name of the header is up to the API provider, but it SHOULD NOT be an X- prefixed header as this use is deprecated.πŸ’‘

Sometimes API keys are passed in URIs; however, this is not considered best practice and SHOULD NOT be done.πŸ’‘

Example

KeyID: pX680LyiKasUBWLuZJ8AVBHVQK03Ghtr

If-Modified-Since/If-None-Match​

SHOULD

The If-Modified header is a pre-condition header used to instruct a client on the validity of the resource requested.

Note that pre-condition handling is not required, but where appropriate SHOULD be considered.πŸ’‘

Pre-condition control can be a complex topic so in some cases the complexity may eclipse the value.

Conditional header standards are available in Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests RFC9110

A consuming application can specify an If-Modified-Since header with a date and time. The server checks the resource to see the last modified time. If the last modification was before the date/time specified in the header, the server will respond with an HTTP 304 status code telling the consuming application that the resource they requested has not changed and therefore there is no need to return the full payload in the response.

When using If-Modified headers you should also implement ETag as discussed in the ETag section.πŸ’‘

Example

# Request with If-Modified-Since and If-None-Match headers

If-Modified-Since: Wed, 18 Jun 2016 22:00:00 GMT
If-None-Match: "686897696a7c876b7e"

The If-None-Match header indicates to the provider the ETag for the resource that it currently holds for that resource.

Example Response

# Response that indicates the client’s current representation is still valid

HTTP/1.1 304 Not Modified
ETag: "686897696a7c876b7e"
Content-Length: 0

Request tracking headers​

MUST

To support the tracking of API requests it is a good idea to apply a transaction ID header that will enable analysts to trace a request throughout its lifecycle.πŸ’‘

Note: there is no set naming standard for a transaction ID header.

There are two common approaches to this: one is to request that the consuming application generate a unique transaction ID and the provider will capture it and respond with a corresponding correlation ID; the second is to allow the provider to generate the transaction ID as close to the edge of its domain as possible, and respond to the consuming application with that transaction ID. In this case a consuming application administrator or developer should capture and log that transaction ID for audit purposes so that it can be relayed to agency analysts if required.

Note that the Payments New Zealand API Centre Standard specifies the use of the x-fapi-interaction-id header - see FAPI Protected Resource Provisions and FAPI Client Provisions

Example Request

# Request that includes a consuming application generated transaction ID

Interaction-Id: c188cb0e-1a09-4184-890c-0f0bb2255425

Example Response


Interaction-Id: c188cb0e-1a09-4184-890c-0f0bb2255425

Response Header Detail​

Response headers are supplied by the API Provider:

Content-Type (Response)​

MUST

The Content-Type MUST be returned in the response, and indicate the format type the response content is in e.g. Content-Type: application/json.πŸ’‘

The Content-Type header SHOULD also include the version of the API that processed the request e.g. Content-Type: application/json,version=1.1.πŸ’‘

Location​

MUST (201, 30X)

Where a new resource item has been created (POST), the server MUST respond with a 201 Created HTTP header and a Location header indicating the URI of the newly created resource item.πŸ’‘

E.g: Location: https://api.example.govt.nz/v1/alerts/198373

A Location header MUST also be returned by a server when it sends a 30X HTTP response, indicating a temporary or permanent redirection.πŸ’‘

A location header MUST be absolute e.g: Location: https://api.example.govt.nz/v1/alerts/198373.πŸ’‘

Location headers should not be relative e.g: Location: /v1/crown-property/198373

Content-Location​

SHOULD

The Content-Location header SHOULD indicate the location of the requested resource and be an absolute link.πŸ’‘

Example

# GET https://api.example.govt.nz/v1/crown-property/198373

Content-Type: application/json
Content-Location: https://api.example.govt.nz/v1/alerts/198373

{
"id": 12345,
"address1": "1 Some Street",
"address2": "Some Suburb",
"address3": "Some City",
"address4": null,
"country": "New Zealand",
"postcode": 1111,
"type": "outbreak"
}

Cache-Control​

MUST

To ensure that the APIs you build can perform at scale, the Cache-Control header MUST be used.πŸ’‘

The Cache-Control header is only concerned with caching that occurs externally to the API layer. Common examples may be client-side caching or caching within a Content Delivery Network (CDN). This header should not be concerned with caching mechanisms within the API layer such as response caches or object caches, which require a different caching strategy.

The Cache-Control header is comprised of the following:

  • private|public: This indicates if the cache is specific to the consumer or not – a setting of private will prevent the cache from being persisted in a public cache.

  • no-cache: This instructs a cache to revalidate the resource every time**.**

  • no-store: This instructs a cache not to store the response. It also ensures that no part of the request is stored too.

  • max-age: This instructs the cache on expiry time. This can be used but it makes more sense to use the Expires header discussed below.

  • s-max-age: Similar to the above, however it refers to a shared cache hence only relevant to CDNs and other intermediary caches.

  • must-revalidate: This instructs the client to resend request headers and receive confirmation that the resource has not changed.

  • proxy-revalidate: Similar to the above, however specific to shared caches.

Example

# Example caching response
HTTP/1.1 200 OK
Date: Wed, 06 Jul 2016 21:14:52 GMT
Expires: Wed, 06 Jul 2016 22:14:52 GMT
Cache-Control: private,max-age=14400,must-revalidate
Content-Type: application/json

Care should be taken when using caches, especially shared or public caches. In some cases it may be more prudent to use the no-cache directive to ensure that content is not cached outside your network. This does not rule out caching within your API layer. For more information on API caching please see Caching.

HTTP Cache Control standards can be found in Hypertext Transfer Protocol (HTTP/1.1): Caching RFC7234

Expires​

SHOULD

When using Cache-Control you SHOULD include an Expires header in the response for backward compatibility.πŸ’‘

ETag (Entity Tag)​

SHOULD

The ETag header is a concurrency control header, and when in a response it is a tag that the consuming application can use when making a subsequent request to a resource. Note that pre-condition handling is not required, but where appropriate, should be considered. Pre-condition control can be a complex topic so in some cases the complexity may eclipse the value.

# Response with ETag Header
# Consuming application would send this ETag in an If-None-Match request header

ETag: "686897696a7c876b7e"

Custom X- HTTP Headers​

X- notation headers have been deprecated as per RFC6648 and SHOULD NOT be used, if possible.πŸ’‘

This is because the X- name often became a standard, making the X-notation inaccurate (e.g. x-gzip became gzip) and requiring support for both the X- and the non-X- notation. Common uses of the X- headers are examples such as the X-HTTP-Method-Override header or the X-Forwarded-* headers.

If a custom header is required that is not available within the current HTTP standard then a custom header can be used without the X- prefix - e.g. X-Request-Id could be simply Request-Id.